home *** CD-ROM | disk | FTP | other *** search
/ Final Fantasy the Spirits Within Cardz / Final Fantasy the Spirits Within CD Cardz - Disc 3: Dr. Sid.iso / pc / assets / sid-title.dcr / 00049_descriptionpanel behaviour.ls < prev    next >
Encoding:
Text File  |  2001-07-22  |  306 b   |  26 lines

  1. property my
  2.  
  3. on beginSprite me
  4.   Initialize(me)
  5. end
  6.  
  7. on Initialize me
  8.   my = me.spriteNum
  9. end
  10.  
  11. on mouseDown me
  12.   repeat while the stillDown
  13.     sprite(my).locH = the mouseH
  14.     sprite(my).locV = the mouseV
  15.     updateStage()
  16.   end repeat
  17. end
  18.  
  19. on mouseEnter
  20.   cursor(280)
  21. end
  22.  
  23. on mouseLeave
  24.   cursor(-1)
  25. end
  26.